Global.CreateBool


Create a boolean global and initialise.

prototype Global.CreateBool( string name,
                             int access,
                             bool initial_value );

Parameters:
name : The name of the global to create.
access : The access type of the global.
initial_value : The initial boolean value of the global.

Return value:
None.

Notes:
If a global already exists with this name it is overwritten, unless the original is read only.

See also:
Global.CreateInt, Global.CreateFloat, Global.CreateHandle, Global.CreateString, Global.CreateList, Global.CreateSet.